internal/runtime/maps.Map.globalDepth (field)

15 uses

	internal/runtime/maps (current package)
		map.go#L226: 	globalDepth uint8
		map.go#L306: 	m.globalDepth = uint8(sys.TrailingZeros64(dirSize))
		map.go#L307: 	m.globalShift = depthToShift(m.globalDepth)
		map.go#L313: 		directory[i] = newTable(mt, uint64(targetCapacity)/dirSize, i, m.globalDepth)
		map.go#L347: 	entries := 1 << (m.globalDepth - nt.localDepth)
		map.go#L355: 	if old.localDepth == m.globalDepth {
		map.go#L371: 		m.globalDepth++
		map.go#L383: 	entries := 1 << (m.globalDepth - left.localDepth)
		map.go#L635: 	m.globalDepth = 0
		map.go#L636: 	m.globalShift = depthToShift(m.globalDepth)
		table.go#L560: 	it.globalDepth = m.globalDepth
		table.go#L617: 	entries := 1 << (it.m.globalDepth - it.tab.localDepth)
		table.go#L742: 	if it.globalDepth != it.m.globalDepth {
		table.go#L772: 		orders := it.m.globalDepth - it.globalDepth
		table.go#L777: 		it.globalDepth = it.m.globalDepth